home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / oleo-1_4.lha / oleo-1.4 / io-utils.h < prev    next >
C/C++ Source or Header  |  1993-03-11  |  2KB  |  72 lines

  1. #ifndef IO_UTILSH
  2. #define IO_UTILSH
  3.  
  4. /*    Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this software; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19. /*  t. lord    Thu Oct 15 18:26:51 1992    */
  20.  
  21. #include "global.h"
  22. #include "cell.h"
  23. extern char numb_oflo[];
  24. extern char *bname[];
  25. extern char print_buf[];
  26.  
  27. #ifdef __STDC__
  28. extern void init_infinity (void);
  29. extern char * flt_to_str (double val);
  30. extern char * long_to_str (long val);
  31. extern char * print_cell (CELL *cp);
  32. extern char * cell_value_string (CELLREF row, CELLREF col);
  33. extern char * adjust_prc (char *oldp, CELL *cp, int width, int smallwid, int just);
  34. extern void set_usr_stats (int usr_n, char **usr_buf);
  35. extern int usr_set_fmts (void);
  36. extern void get_usr_stats (int usr_num, char **usr_buf);
  37. extern char * cell_name (CELLREF rr, CELLREF cc);
  38. extern char * range_name (struct rng *rng);
  39. extern int get_abs_rng (char **pptr, struct rng *retp);
  40. extern char * col_to_str (CELLREF col);
  41. extern void clear_spreadsheet (void);
  42. extern int words_imatch (char ** ptr, char * key);
  43. extern int parray_len (char ** array);
  44. extern int words_member (char ** keys, int len, char * check);
  45. extern int prompt_len (char * prompt);
  46. extern int says_default (char * str);
  47.  
  48. #else
  49. extern void init_infinity ();
  50. extern char * flt_to_str ();
  51. extern char * long_to_str ();
  52. extern char * print_cell ();
  53. extern char * cell_value_string ();
  54. extern char * adjust_prc ();
  55. extern void set_usr_stats ();
  56. extern int usr_set_fmts ();
  57. extern void get_usr_stats ();
  58. extern char * cell_name ();
  59. extern char * range_name ();
  60. extern int get_abs_rng ();
  61. extern char * col_to_str ();
  62. extern void clear_spreadsheet ();
  63. extern int words_imatch ();
  64. extern int parray_len ();
  65. extern int words_member ();
  66. extern int prompt_len ();
  67. extern int says_default ();
  68.  
  69. #endif
  70.  
  71. #endif
  72.